home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 23 / CU Amiga - Super CD-ROM 23 (June 1998).iso / CreatingGames / Utilities / Misc / GMS / GMSDev / EModules / system / tracking.e < prev    next >
Encoding:
Text File  |  1997-12-03  |  1.0 KB  |  36 lines

  1. /*
  2. **  $VER: tracking.e V0.9B
  3. **
  4. **  (C) Copyright 1996-1997 DreamWorld Productions.
  5. **      All Rights Reserved
  6. */
  7.  
  8. OPT MODULE
  9. OPT EXPORT
  10. OPT PREPROCESS
  11.  
  12. MODULE 'dpkernel/dpkernel','system/register'
  13.  
  14. /*****************************************************************************
  15. ** Resource numbers.
  16. */
  17.  
  18. CONST RES_EMPTY    = 0,
  19.       RES_MEMORY   = 1,   /* Memory allocation, lowest level resource type */
  20.       RES_COMPLEX  = 2,   /* Complex allocation - (hardware and software) */
  21.       RES_CUSTOM   = 3,   /* Software allocation of a customised type */
  22.       RES_HARDWARE = 4    /* Hardware allocation */
  23.  
  24. /*****************************************************************************
  25. ** This structure is used only within the kernel.
  26. */
  27.  
  28. OBJECT track
  29.   next    :PTR TO track  /* Next in the chain */
  30.   id      :INT           /* ID number of this resource (see above) */
  31.   key     :LONG          /* Unique key for the resource */
  32.   address :LONG          /* Address of object to free */
  33.   routine :LONG          /* ROUTINE */
  34. ENDOBJECT
  35.  
  36.